71a54aa2e5e797122a211d2f227e9cfc96c2241f,examples/org.eclipse.xtext.xtext.ui.examples/contents/org.eclipse.xtext.example.tutorial.tests/initial/xtend-gen/org/eclipse/xtext/example/tutorial/TypesBuilderExercise.java,TypesBuilderExercise,testMe,#,23
Before Change
_builder.newLine();
_builder.append("import java.util.Date");
_builder.newLine();
_builder.append("\t");
_builder.append("/**");
_builder.newLine();
_builder.append(" \t ");
_builder.append("* A simple entity to describe a Person");
_builder.newLine();
_builder.append(" \t ");
_builder.append("*/");
_builder.newLine();
_builder.append("\t");
_builder.append("entity Person {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("firstName: String");
_builder.newLine();
_builder.append("\t\t");
_builder.append("lastName: String");
_builder.newLine();
_builder.append("\t\t");
_builder.append("birthday: Date");
_builder.newLine();
_builder.append(" ");
_builder.append("}");
_builder.newLine();
_builder.append("}");
After Change
StringConcatenation _builder = new StringConcatenation();
_builder.append("package tutorial");
_builder.newLine();
_builder.newLine();
_builder.append("import java.util.Date");
_builder.newLine();
_builder.newLine();
_builder.append("/**");
_builder.newLine();
_builder.append(" ");
_builder.append("* A simple entity to describe a Person");
_builder.newLine();
_builder.append(" ");
_builder.append("*/");
_builder.newLine();
_builder.append("entity Person {");
_builder.newLine();
_builder.append("\t");
_builder.append("firstName: String");
_builder.newLine();
_builder.append("\t");